home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / graphics / pstex / makefile < prev    next >
Makefile  |  1992-01-27  |  739b  |  39 lines

  1. # The following file and directory specifications may need changing at
  2. # your site:
  3. #
  4. # where is the header file to be found?
  5. HDRDIR=A:\\TEX\\BIN
  6. HDRFILE=$(HDRDIR)\\jtex.ps
  7. PSPATH=.
  8. #
  9. #
  10. # By default we will use PK > GF > PXL format files.
  11. #
  12. # how to global font registration
  13. # include a -DGLOBAL_FONT below
  14. # and edit "jtex.ps" file    /bop0  -> /bop1
  15. #                /bop1  -> /bop0
  16. #
  17.  
  18. #CFLAGS = /AL /Fs /Zi /Od /W2 /DDEBUG
  19. CFLAGS = /AL
  20. #LDFLAGS = /Fm /AL /Zi /Od 
  21. LDFLAGS = /AL
  22.  
  23. MAKE = make makefile
  24. RM = rm -rf
  25.  
  26. .c.obj:
  27.     cl /c $(CFLAGS) $*.c
  28.  
  29. OBJ    = pstex.obj args.obj fopenp.obj
  30.  
  31. pstex.obj: pstex.c std.h args.h
  32.  
  33. args.obj: args.c std.h args.h
  34.  
  35. fopenp.obj: fopenp.c std.h
  36.  
  37. pstex.exe: $(OBJ)
  38.     cl $(LDFLAGS) $(OBJ)
  39.